home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 46 / Amiga Format CD46 (1999-10-20)(Future Publishing)(GB)[!][issue 1999-12].iso / -in_the_mag- / reader_requests / scilab / man / man-part1 / cat4 / calfrq.4 < prev    next >
Text File  |  1999-09-16  |  1KB  |  67 lines

  1.  
  2.  
  3.  
  4. calfrq(1)                      Scilab Function                      calfrq(1)
  5.  
  6.  
  7.  
  8.  
  9.  
  10.  
  11. NAME
  12.   calfrq - frequency response discretization
  13.  
  14. CALLING SEQUENCE
  15.   [frq,bnds]=calfrq(h,[fmin,fmax])
  16.  
  17. PARAMETERS
  18.  
  19.   h         : SISO linear system (syslin list)
  20.  
  21.   fmin,fmax : real scalars (min and max frequencies)
  22.  
  23.   frq       : row vector (discretization of interval)
  24.  
  25.   bnds      : vector (bounds of the response)
  26.  
  27. DESCRIPTION
  28.   frequency response discretization ; frq is the discretization of
  29.   [fmin,fmax] such that the peaks in the frequency response are well
  30.   represented. The bounds of real part and imaginary part of the frequency
  31.   response in [fmin,fmax] are given by bnds.
  32.  
  33.   Default values for fmin and fmax are 1.d-3, 1.d+3 if h is continuous-time
  34.   or 1.d-3, 0.5 if h is discrete-time.
  35.  
  36. EXAMPLE
  37.   s=poly(0,'s')
  38.   h=syslin('c',(s^2+2*0.9*10*s+100)/(s^2+2*0.3*10.1*s+102.01))
  39.   h1=h*syslin('c',(s^2+2*0.1*15.1*s+228.01)/(s^2+2*0.9*15*s+225))
  40.   [f1,b1]=calfrq(h1,0.01,1000);
  41.   rf=repfreq(h1,f1);
  42.   plot2d(real(rf)',imag(rf)')
  43.  
  44. SEE ALSO
  45.   bode, black, nyquist, freq, repfreq, logspace
  46.  
  47.  
  48.  
  49.  
  50.  
  51.  
  52.  
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63.  
  64.  
  65.  
  66.  
  67.